* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.objectives-section {
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
    padding: 0px 0px 80px !important;
}
/* TITLE */
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #b02a37;
}

.title-underline {
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, #dc3545, #f59e0b);
    margin: 15px auto 0;
    border-radius: 50px;
}

/* OBJECTIVE CARD */
.objective-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #dc3545, #f59e0b);
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.objective-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2a44;
}

.objective-card p {
    color: #555;
    line-height: 1.7;
}

/* ICON */
.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #f59e0b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

/* FLOATING SHAPES */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 10s infinite linear;
}

.shape1 {
    width: 180px;
    height: 180px;
    background: #dc3545;
    top: 10%;
    left: -80px;
}

.shape2 {
    width: 120px;
    height: 120px;
    background: #f59e0b;
    bottom: 20%;
    right: -60px;
}

.shape3 {
    width: 90px;
    height: 90px;
    background: #b02a37;
    top: 60%;
    left: 20%;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ==============================
   VALUES SECTION
================================ */
.values-section {
    padding: 20px 0px 80px !important;
    position: relative !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
}

/* Values Card */
.value-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #dc3545, #f59e0b);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Value Icon */
.value-icon {
    font-size: 42px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc3545, #f59e0b);
    color: #fff;
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

/* Title */
.value-card h5 {
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Text */
.value-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Objectives Title */
.center-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-top: 50px;
    color: #b02a37;
    position: relative;
}

.center-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #dc3545, #f59e0b);
    display: block;
    margin: 10px auto 0;
    border-radius: 20px;
}

/* Objective Text */
.objective-text {
    text-align: center;
    max-width: 900px;
    margin: 25px auto 0;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}
